e294d8a72777d705d514e6b3cd398987ee133b2c,java/connector-framework-internal/src/main/java/org/identityconnectors/framework/impl/api/local/LocalConnectorInfoManagerImpl.java,LocalConnectorInfoManagerImpl,createConnectorInfo,#Collection#ClassLoader#,238
Before Change
// it might be from a bundle
// fragment ( a bundle only included by other bundles ).
// However, we should definitely warn
LOG.warn(
e,
"Unable to load class {0} from bundle {1}. Class will be ignored and will not be listed in list of connectors.",
className, bundleInfo.getOriginalLocation());
}
}
if (connectorClass != null && options != null) {
After Change
"Unable to load configuration class of connector {0} from bundle {1}. Class will be ignored and will not be listed in list of connectors.",
connectorClass, bundleInfo.getOriginalLocation());
} catch (final TypeNotPresentException e) {
LOG.info(LOG.isOk() ?
e : null,
"Unable to load configuration class of connector {0} from bundle {1}. Class will be ignored and will not be listed in list of connectors.",
connectorClass, bundleInfo.getOriginalLocation());
}
}
}